WPF和Silverlight版Chart2D帮助文档
指定数据系列每一个条形或柱形的颜色

您可以在数据系列的PlotElementLoaded(在线文档 'PlotElementLoaded 事件')事件中指定每一个条形或柱形的颜色,通过以下代码:

C#
拷贝代码
var palette = new Brush[] { Brushes.Red, Brushes.Plum, Brushes.Purple };
      dataSeries.PlotElementLoaded += (s, e) =>
        {
          PlotElement pe = (PlotElement)s;
          if (pe.DataPoint.PointIndex >= 0)
            pe.Fill = palette[pe.DataPoint.PointIndex % palette.Length];
        };
查看其它

 

 


产品网站:http://www.gcpowertools.com.cn  |  咨询热线:4006576008   |   ©2015 西安葡萄城